fencepost error - определение. Что такое fencepost error
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое fencepost error - определение

TYPE OF NUMERICAL OR COUNTING ERROR
Fencepost error; Obi-wan error; Obi-Wan error; Off by one errors; Off by one error; Off-by-one-error; Off by one (bug); Buffer fence post error; OB1; Fencepost problem; Fence post error; Off-by-one; Off by one; Off by 1; Off-by-one errors; Banana error; Fence-post error; OBOB; Picket-fence problem
Найдено результатов: 623
fencepost error         
1. (Rarely "lamp-post error") A problem with the discrete equivalent of a boundary condition, often exhibited in programs by iterative loops. From the following problem: "If you build a fence 100 feet long with posts 10 feet apart, how many posts do you need?" (Either 9 or 11 is a better answer than the obvious 10). For example, suppose you have a long list or array of items, and want to process items m through n; how many items are there? The obvious answer is n - m, but that is off by one; the right answer is n - m + 1. The "obvious" formula exhibits a fencepost error. See also zeroth and note that not all off-by-one errors are fencepost errors. The game of Musical Chairs involves a catastrophic off-by-one error where N people try to sit in N - 1 chairs, but it's not a fencepost error. Fencepost errors come from counting things rather than the spaces between them, or vice versa, or by neglecting to consider whether one should count one or both ends of a row. 2. (Rare) An error induced by unexpected regularities in input values, which can (for instance) completely thwart a theoretically efficient binary tree or hash coding implementation. The error here involves the difference between expected and worst case behaviours of an algorithm. [Jargon File] (1994-12-01)
off-by-one error         
<programming> An exceedingly common error induced in many ways, such as by starting at zero when you should have started at one or vice-versa, or by writing "< N" instead of "<= N" or vice-versa. Often confounded with fencepost error, which is properly a particular subtype of it. [Jargon File] (1998-09-21)
obi-wan error         
/oh'bee-won" er"*r/ [RPI, from "off-by-one" and the Obi-Wan Kenobi character in "Star Wars"] A loop of some sort in which the index is off by 1. Common when the index should have started from 0 but instead started from 1. A kind of off-by-one error. See also zeroth.
Off-by-one error         
An off-by-one error or off-by-one bug (known by acronyms OBOE, OBO, OB1 and OBOB) is a logic error involving the discrete equivalent of a boundary condition. It often occurs in computer programming when an iterative loop iterates one time too many or too few.
random error         
DIFFERENCE BETWEEN A MEASURED QUANTITY VALUE AND A REFERENCE QUANTITY VALUE
ObservationalError; Measurement error; Experimental error; Systematic bias; Random error; Systematic error; Systemic error; Alleged systemic bias; Random errors; Systematic errors; Measurement errors; Observational Error; Systematic effect; Chance error; Accidental error; Constant error; Stochastic error; Observation error; Systematic and random error; Systematic and random errors; Random and systematic errors; Measurement Error
¦ noun Statistics an error in measurement caused by factors which vary from one measurement to another.
Observational error         
DIFFERENCE BETWEEN A MEASURED QUANTITY VALUE AND A REFERENCE QUANTITY VALUE
ObservationalError; Measurement error; Experimental error; Systematic bias; Random error; Systematic error; Systemic error; Alleged systemic bias; Random errors; Systematic errors; Measurement errors; Observational Error; Systematic effect; Chance error; Accidental error; Constant error; Stochastic error; Observation error; Systematic and random error; Systematic and random errors; Random and systematic errors; Measurement Error
Observational error (or measurement error) is the difference between a measured value of a quantity and its true value.Dodge, Y.
systematic error         
DIFFERENCE BETWEEN A MEASURED QUANTITY VALUE AND A REFERENCE QUANTITY VALUE
ObservationalError; Measurement error; Experimental error; Systematic bias; Random error; Systematic error; Systemic error; Alleged systemic bias; Random errors; Systematic errors; Measurement errors; Observational Error; Systematic effect; Chance error; Accidental error; Constant error; Stochastic error; Observation error; Systematic and random error; Systematic and random errors; Random and systematic errors; Measurement Error
¦ noun Statistics an error whose effect is not reduced when observations are averaged.
clerical error         
  • Katie]]'', which later served as the United States Navy patrol vessel
  • 2}} minutes of the "[[Watergate tapes]]" during a phone call.
MISTAKE IN CLERICAL WORK, E.G. DATA ENTRY
Scrivener's error; Scrivner's Error
¦ noun a mistake made in copying or writing out a document.
pilot error         
  • Map of the [[Linate Airport disaster]] caused by taking the wrong taxiing route (red instead of green), as control tower had not given clear instructions. The accident occurred in thick fog.
  • publisher=Go Flight Medicine}}</ref> Due to several misunderstandings, the KLM flight tried to take off while the Pan Am flight was still on the runway. The airport was accommodating an unusually large number of commercial airliners, resulting in disruption of the normal use of taxiways.
  • Multiple sources of information can be taken from one interface here, known as the PFD, or primary flight display from which pilots receive all of the most important data readings
  • A military pilot reads the pre-flight checklist prior the mission. Checklists ensure that pilots are able to follow operational procedure and aids in memory recall.
  • Actual flight path (red) of [[TWA Flight 3]] from departure to crash point ([[controlled flight into terrain]]). Blue line shows the nominal Las Vegas course, while green is a typical course from Boulder. The pilot inadvertently used the Boulder outbound course instead of the appropriate Las Vegas course.
DECISION, ACTION OR INACTION BY A PILOT OF AN AIRCRAFT
Cockpit error; Pilot Error
<jargon> (Sun, from aviation) A user's misconfiguration or misuse of a piece of software, producing apparently bug-like results. E.g. "Joe Luser reported a bug in sendmail that causes it to generate bogus headers." "That's not a bug, that's pilot error. His "sendmail.cf" is hosed." Compare UBD. [Jargon File] (1994-12-05)
Clerical error         
  • Katie]]'', which later served as the United States Navy patrol vessel
  • 2}} minutes of the "[[Watergate tapes]]" during a phone call.
MISTAKE IN CLERICAL WORK, E.G. DATA ENTRY
Scrivener's error; Scrivner's Error
A clerical error is an error on the part of an office worker, often a secretary or personal assistant. It is a phrase which can also be used as an excuse to deflect blame away from specific individuals, such as high-powered executives, and instead redirect it to the more anonymous clerical staff.

Википедия

Off-by-one error

An off-by-one error or off-by-one bug (known by acronyms OBOE, OBO, OB1 and OBOB) is a logic error involving the discrete equivalent of a boundary condition. It often occurs in computer programming when an iterative loop iterates one time too many or too few. This problem could arise when a programmer makes mistakes such as using "is less than or equal to" where "is less than" should have been used in a comparison, or fails to take into account that a sequence starts at zero rather than one (as with array indices in many languages). This can also occur in a mathematical context.